home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / cacstats.cpp < prev    next >
C/C++ Source or Header  |  1999-03-14  |  3KB  |  83 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- // 
  5. // C++ Source Code File Name: cacstats.cpp 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 02/07/1997  
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. Cache printing functions used to display performance statistics.
  32. */
  33. // ----------------------------------------------------------- // 
  34. #include <iostream.h> 
  35. #include <iomanip.h>  
  36. #include "cacstats.h"
  37. #include "bucketb.h"
  38.  
  39. void Report(Cacheb &c, int full_report) // Test purposes only
  40. // Reports on the status of the cache.
  41. {
  42.   Bucketb *b = c.GetHead();
  43.   int cnt = 0, i = 0;
  44.   do {
  45.     if (b->IsLocked()) cnt++;
  46.     if (full_report) {
  47.        cout << "Bucket[" << setfill('0') << setw(3) << i << "]: ";
  48.        cout << "Address = " << setfill('0') << setw(3)
  49.         << b->GetAddress() << ' ';
  50.        cout << "Refs = " << b->GetRefCnt() << ' ';
  51.        cout << "Dirty = " << int(b->GetDirty()) << endl;
  52.     }
  53.     i++; b = b->GetNext();
  54.   } while(b != c.GetHead());
  55.  
  56.   cout << endl;
  57.   cout << "FAST BINDS - binds to previously allocated, unchanged buckets."
  58.        << endl;
  59.   cout << "HITS - number of buckets that did not have to be acqiured."
  60.        << endl;
  61.   cout << "MISSES - number of cache buckets that had to be acqiured."
  62.        << endl;
  63.   cout << endl;
  64.   float ratio = 0.0;
  65.   if (c.GetHits() + c.GetFastBinds())
  66.      ratio = ((float)(c.GetHits()+c.GetFastBinds()) / 
  67.           (float)(c.GetHits()+c.GetFastBinds()+c.GetMisses()) ) * 100.0;
  68.   cout << "Fast binds/hits/misses: "
  69.        << c.GetFastBinds() << " / " << c.GetHits() << " / " << c.GetMisses()
  70.        << " (" << setprecision(2) << ratio << "%)" << endl;
  71.   cout << endl;
  72.   cout << "Reservations (HITS + FAST BINDS + MISSES): "
  73.        << (c.GetHits() + c.GetFastBinds() + c.GetMisses()) << endl;
  74.   cout << endl;
  75.   cout << "Number of buckets allocated: " << c.GetBuckets() << endl;
  76.   cout << endl;
  77.   cout << "Number of buckets currently locked: " << cnt << endl;
  78. }
  79. // ----------------------------------------------------------- //
  80. // ------------------------------- //
  81. // --------- End of File --------- //
  82. // ------------------------------- //
  83.